home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / BlueCustom.swf / scripts / frame_630 / PlaceObject2_241_14 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  274b  |  14 lines

  1. onClipEvent(enterFrame){
  2.    if(this._x < -500)
  3.    {
  4.       this._x = 900;
  5.       this.gotoAndStop(this._currentframe + 1);
  6.    }
  7.    if(this._x > 1000)
  8.    {
  9.       this._x = -400;
  10.       this.gotoAndStop(this._currentframe - 1);
  11.    }
  12.    this._x += _global.xgo / 2;
  13. }
  14.